home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / Messaging / OSL / OSLTmpDf.h < prev    next >
Encoding:
Text File  |  1996-04-22  |  1.3 KB  |  48 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        OSLTmpDf.h (Orignal name: OSLTempDefs.h)
  3.  
  4.     Contains:    
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1993-94 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <2>     8/19/94    NP        1181622: Ownership fix.
  13.          <3>      2/9/94    NP        Tiger Team cleanup.
  14.          <2>     8/16/93    NP        Adjusted for latest OSL proposal.
  15.          <1>     7/21/93    NP        first checked in
  16.  
  17.     To Do:
  18. */
  19.  
  20. ////////////////////////////////////////////////////////////////////////////////
  21. // Copyright © 1992-94 Apple Computer, Inc. All rights reserved.
  22. // Author: Eric House
  23. ////////////////////////////////////////////////////////////////////////////////
  24.  
  25. #ifndef __OSLTempdefs__
  26. #define __OSLTempdefs__
  27.  
  28. #include <AEPackObject.h>
  29.  
  30. // These guys need to be added to AEObjects.h
  31.  
  32. #define        typeCompEvtDescriptor    ((DescType)'cmpe')
  33. #define        keyCompEvtParams        ((DescType)'prms')
  34. #define        typeCompEvtParams        ((DescType)'prms')
  35. #define        keyEventClassParam        ((DescType)'evcl')
  36. #define        keyEventIDParam            ((DescType)'evid')
  37.  
  38. pascal OSErr
  39. CreateCompEventDesc(    DescType compEventClass,
  40.                         DescType compEventID,
  41.                         AERecord *args,
  42.                         Boolean disposeInputs,
  43.                         AEDesc *theDescriptor ) ;
  44.  
  45. ////////////////////////////////////////////////////////////////////////////////
  46. #endif
  47. ////////////////////////////////////////////////////////////////////////////////
  48.